home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / bin / screen-launcher < prev    next >
Encoding:
Text File  |  2009-04-08  |  1.0 KB  |  30 lines

  1. #!/bin/sh -e
  2. #
  3. #    screen-launcher
  4. #    Copyright (C) 2008 Canonical Ltd.
  5. #
  6. #    Authors: Nick Barcet <nick.barcet@ubuntu.com>
  7. #             Dustin Kirkland <kirkland@canonical.com>
  8. #
  9. #    This program is free software: you can redistribute it and/or modify
  10. #    it under the terms of the GNU General Public License as published by
  11. #    the Free Software Foundation, version 3 of the License.
  12. #
  13. #    This program is distributed in the hope that it will be useful,
  14. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. #    GNU General Public License for more details.
  17. #
  18. #    You should have received a copy of the GNU General Public License
  19. #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  20.  
  21.  
  22. [ "$TERM" = "screen" ] && exit 0
  23.  
  24. # Ensure that the PROMPT_COMMAND gets printed, such that gnome-terminal
  25. # and friends can pick it up before going into screen
  26. [ -x /bin/bash ] && /bin/true | /bin/bash -i -s
  27.  
  28. # Launch screen
  29. exec screen -xRR
  30.